8940fe26195266b337f87437fd3bbe5e75929480,portal-impl/src/com/liferay/portal/tools/sourceformatter/BaseSourceProcessor.java,BaseSourceProcessor,format,#boolean#boolean#boolean#boolean#,62

Before Change


			boolean autoFix)
		throws Exception {

		_init(useProperties, throwException, printErrors, autoFix);

		doFormat();

After Change


		throws Exception {

		try {
			_init(useProperties, printErrors, autoFix);

			return doFormat(fileName);
		}